Table of Contents [Hide/Show]
Templates Template Method Rules Template Example See Also
namespace JetfireApps { public workflow MyFlow { ArrayList list = new ArrayList(); public MyFlow() { list.Add(""One""); list.Add(""Two""); list.Add(""Three""); } public string TemplateTest() { ## the first line foreach (string s in list) { ## $s$ } return value; } }
the first line One Two Three